-
Notifications
You must be signed in to change notification settings - Fork 44
mthds-2-Rename .plx to .mthds and workflow to method #666
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
lchoquel
wants to merge
7
commits into
feature/Epic-mthds-1
Choose a base branch
from
feature/Epic-mthds-2
base: feature/Epic-mthds-1
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…"method"
MTHDS is the new name for the open standard. Pipelex remains the reference
implementation. This is a hard switch with no backward-compatible .plx loading.
- Add MTHDS_EXTENSION constant in helpers.py as single source of truth
- Rename Plx* classes to Mthds* (PlxFactory -> MthdsFactory, PlxConfig -> MthdsConfig)
- Rename all .plx files to .mthds (builder bundles, test fixtures)
- Update functions/variables referencing "plx" as file format
- Update TOML config sections (plx_config -> mthds_config)
- Update all CLI help text, error messages, and examples
- Update documentation and README ("workflow" -> "method" for MTHDS concept)
- Update VS Code config file associations
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
- Rename doc files: kick-off-a-pipelex-workflow-project.md → kick-off-a-methods-project.md, write-workflows-manually.md → write-methods-manually.md, configure-ai-llm-to-optimize-workflows.md → configure-ai-llm-to-optimize-methods.md - Rename plx_content → mthds_content and plx_file_path → mthds_file_path across all pipeline, CLI, client, builder, and test files - Rename PLXDecodeError → MthdsDecodeError class and all references - Rename to_plx_dict() → to_mthds_dict() method and all call sites - Rename invalid_plx.py → invalid_mthds.py test data file - Update all remaining PLX/plx references in comments, docstrings, error messages, test identifiers, and template files - Update mkdocs.yml nav paths and site_description - Update all cross-references to renamed doc files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Update remaining instances where "workflow" referred to Pipelex executable methods in docstrings, error messages, and project docs. Generic programming usage of "workflow" is left unchanged. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
.plxfiles renamed to.mthdsacross the entire codebase (builder bundles, test fixtures, 50+ files)PlxFactory→MthdsFactory,PlxConfig→MthdsConfig, and all related subclassesplx/PLXtomthds/MTHDS.plx→.mthds, "workflow" → "method" where referring to the MTHDS concept).plxloading — clean break for the MTHDS open standardTest plan
make agent-checkpasses (ruff lint, pyright, mypy — 0 errors, 0 warnings)make agent-testpasses (all unit and integration tests)grep -r "\.plx" --include="*.py" --include="*.toml" --include="*.yml" --include="*.json"returns no matches.plxin markdown is inCHANGELOG.md(historical) andrefactoring/(design docs)🤖 Generated with Claude Code
Note
Low Risk
Primarily documentation and developer tooling updates (VS Code configs, MkDocs nav, CLI examples) with no runtime/behavioral code changes shown in the diff; risk is limited to broken links/examples if any references were missed.
Overview
Updates the project’s public-facing terminology by replacing
.plxwith.mthdsand shifting references from workflows to methods across the README and extensive documentation (CLI examples, language spec, guides, cookbook pages).Aligns developer tooling and site configuration with the rename, including VS Code launch/config file associations and
mkdocs.ymlnavigation/metadata updates.Written by Cursor Bugbot for commit 2a6779e. This will update automatically on new commits. Configure here.